Skip to main content
POST
/
v1
/
subscriptions
/
templates
Create subscription template
curl --request POST \
  --url https://api.hyperline.co/v1/subscriptions/templates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Starter",
  "description": "Starter pack"
}
'
{
  "id": "subt_7gdusOkqr5L0B8",
  "name": "Starter",
  "description": "Starter pack",
  "created_at": "2025-11-30T18:24:34.473Z",
  "updated_at": "2025-11-30T18:24:34.473Z",
  "configurations": []
}

Documentation Index

Fetch the complete documentation index at: https://docs.hyperline.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

Subscription template name.

Example:

"Starter"

description
string | null

Subscription template description.

Example:

"Starter pack"

Response

201 - application/json
id
string
required

Subscription template ID.

Example:

"subt_7gdusOkqr5L0B8"

name
string
required

Subscription template name.

Example:

"Starter"

description
string | null
required

Subscription template description.

Example:

"Starter pack"

created_at
string<date-time>
required

Subscription template creation date. UTC date time string in the ISO 8601 format.

Example:

"2025-11-30T18:24:34.473Z"

updated_at
string<date-time>
required

Subscription template last edition date. UTC date time string in the ISO 8601 format.

Example:

"2025-11-30T18:24:34.473Z"

configurations
object[]
required

Subscription template configurations.

Example:
[]